home *** CD-ROM | disk | FTP | other *** search
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- deferred class ANIMAL
-
- feature {ANY}
-
- cry is
- deferred
- end;
-
- reproduction(other: ANIMAL): ANIMAL is
- require
- other /= Void
- do
- Result := other;
- end;
-
- fornicate_with(other: QUADRUPEDE): ANIMAL is
- require
- other /= Void
- do
- Result := other;
- end;
-
- congratulation(other: ANIMAL) is
- do
- Current.cry;
- std_output.put_string(" + ");
- other.cry;
- std_output.put_string(" = ");
- Current.reproduction(other).cry;
- std_output.put_new_line;
- end;
-
- end -- ANIMAL
-